X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/Slider.html%20%28Case%20Conflict%201%29 diff --git a/docs/source/Slider.html (Case Conflict 1) b/docs/source/Slider.html (Case Conflict 1) deleted file mode 100644 index ae5b0a7b..00000000 --- a/docs/source/Slider.html (Case Conflict 1) +++ /dev/null @@ -1,68 +0,0 @@ - - - The source code - - - - -
Ext.onReady(function(){
-
-    new Ext.Slider({
-        renderTo: 'basic-slider',
-        width: 214,
-        minValue: 0,
-        maxValue: 100
-    });
-
-    new Ext.Slider({
-        renderTo: 'increment-slider',
-        width: 214,
-        value:50,
-        increment: 10,
-        minValue: 0,
-        maxValue: 100
-    });
-
-    new Ext.Slider({
-        renderTo: 'vertical-slider',
-        height: 214,
-        vertical: true,
-        minValue: 0,
-        maxValue: 100
-    });
-
-    new Ext.Slider({
-        renderTo: 'tip-slider',
-        width: 214,
-        minValue: 0,
-        maxValue: 100,
-        plugins: new Ext.ux.SliderTip()
-    });
-
-    var tip = new Ext.ux.SliderTip({
-        getText: function(slider){
-            return String.format('{0}% complete', slider.getValue());
-        }
-    });
-
-    new Ext.Slider({
-        renderTo: 'custom-tip-slider',
-        width: 214,
-        increment: 10,
-        minValue: 0,
-        maxValue: 100,
-        plugins: tip
-    });
-
-    new Ext.Slider({
-        renderTo: 'custom-slider',
-        width: 214,
-        increment: 10,
-        minValue: 0,
-        maxValue: 100,
-        plugins: new Ext.ux.SliderTip()
-    });
-});
-
- - \ No newline at end of file